The Hex/Code Editor now supports the Print to Text File sub-menu of the Print command.
Resorcerer 1.1.1 implements three new TMPL field types that didn't make into 1.1, but they were pretty easy to add so we did:
'BFLG' (Byte Boolean Flag)
'WFLG' (Word Boolean Flag)
'LFLG' (Long Boolean Flag)
All three of these fields store either 0 or 1 in the LSB (Least Significant Bit) for the storage size, and all three can have their values changed using the Toggle command in the Custom Editor. The 'BOOL' field remains implemented in the same way it always has been (it stores either 0 or non-zero into a word, the non-zero value being taken from Resorcerer's 'BOOL' resource, shipped with $0100 in it). The 'BFLG' field is the most useful, since many C folks store TRUE (1) or FALSE (0) flags in char fields in structs, rather than going down to the bit field level.